home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / paycheck.arc / README.BAT < prev    next >
DOS Batch File  |  1991-01-21  |  636b  |  29 lines

  1. echo off
  2. cls
  3. echo (S)creen or (P)rinter?
  4. getkey
  5. if errorlevel 83 goto SCREEN
  6. :PRINTER
  7. echo Printing Manual Please Wait....
  8. type paycheck.man >prn:
  9. cls
  10. goto END
  11. :SCREEN
  12. if errorlevel 115 goto SCRN1
  13. if errorlevel 112 goto PRINTER
  14. :SCRN1
  15. CLS
  16. echo To stop and start the manual as it scrolls on the screen: 
  17. echo hold down the Ctrl key and press 's'.
  18. echo Refer to DOS manual or User Guide under Ctrl-S or
  19. echo Ctrl-NumLock for more information on these keys.
  20. :DOIT
  21. echo To stop the instructions at any point press CTRL C,
  22. echo and then Y to the question "Terminate Batch Job".  
  23. pause
  24. TYPE paycheck.man
  25. :END
  26.  
  27.  
  28.  
  29.